From a4f65c64e545db13c930d822b653865564a00577 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Pablo=20Ari=C3=B1o=20Mu=C3=B1oz?= Date: Sun, 23 Feb 2025 08:26:31 +0100 Subject: [PATCH] Removed parenthesis and passed a nullptr for the disambiguation MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Pablo Ariño Muñoz --- src/gui/tray/usermodel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/tray/usermodel.cpp b/src/gui/tray/usermodel.cpp index 1f0020184..e67549d1b 100644 --- a/src/gui/tray/usermodel.cpp +++ b/src/gui/tray/usermodel.cpp @@ -174,7 +174,7 @@ void User::showDesktopNotification(const Activity &activity) void User::showDesktopNotification(const ActivityList &activityList) { - const auto subject = tr("%n notification(s)", "", activityList.count()); + const auto subject = tr("%n notifications", nullptr, activityList.count()); const auto notificationId = -static_cast(qHash(subject)); if (!canShowNotification(notificationId)) { -- 2.30.2